Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632820 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game

scripts.js cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game/scripts.js
120 Views
0 Comments
const dino = document.getElementById("dino");
const cactus = document.getElementById("cactus")
const txt = document.getElementById("txt")
const butt = document.getElementById("btn")
function jump() {
if (dino.classList != "jump") {
dino.classList.add("jump");

trex.png cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game/trex.png
71 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game/style.css
91 Views
0 Comments
*{
padding: 0;
margin: 0;
}
.game {
/* width: 3000px;
height: 1000px; */
width: 600px;
cactus.png cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game/cactus.png
68 Views
0 Comments
Media file
index.html cody/swapnilsparsh/30DaysOfJavaScript/175 - T-rex runner Game/index.html
288 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">